home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 June / EnigmA AMIGA RUN 08 (1996)(G.R. Edizioni)(IT)[!][issue 1996-06][EARSAN CD VII].iso / earcd / texts / hsc.lha / hsc / src_docs / questions.hsc < prev    next >
Text File  |  1995-12-06  |  2KB  |  68 lines

  1. <WEBPAGE chapter="hsc - " title="Questions & Answers"
  2.     PREV="messages.html"
  3.     NEXT="bugs.html">
  4.  
  5. <$MACRO QUEST NAME:string>
  6. <$if (SET NAME)>
  7. <A NAME=(Name)>
  8. </$if>
  9. <STRONG>Q: </STRONG>
  10. <$if (SET Name)>
  11. </A>
  12. </$if>
  13.  
  14. </$MACRO>
  15.  
  16. <$MACRO ANSWR>
  17. <BR><STRONG>A: </STRONG>
  18. </$MACRO>
  19.  
  20. <QUEST NAME="uri">Why do You call it URI? I thought it's URL (<EM>Universal Resource
  21. Locator</EM> or <EM>U R lost</EM>)?
  22.  
  23. <ANSWR>Ok, put a finger into your mouth and try to reach as far inside
  24. as possible. After some specific point, you will empty your stomach.
  25. And what do you say then? Exactly, "<STRONG>URL</STRONG>"! So the main
  26. reason why I do not like the term URL is because it always reminds me
  27. of puking.<BR>
  28.  
  29. Additionally, the Internet-Draft for HTML 2.0, June 16, 1995, tells
  30. you:
  31.  
  32. <PRE>
  33.     URI
  34.             A Universal Resource Identifier is a formatted string
  35.             that serves as an identifier for a resource, typically
  36.             on the Internet. URIs are used in HTML to identify the
  37.             destination of hyperlinks. URIs in common practice
  38.             include Uniform Resource Locators (URLs)[URL] and
  39.             Relative URLs [RELURL].
  40. </PRE>
  41. I really like that term URI a lot more. Altough, I've never really understood
  42. what's the difference between URL and URI. But who cares anyway?
  43. <P>
  44.  
  45. <QUEST NAME="jerk">What are jerks?
  46. <ANSWR>Jerks are persons suffered by a well-known desease called
  47. <EM>Netscapissm</EM>. Their sources contain sections like
  48. <PRE>
  49.     <TG>BODY BGCOLOR=#123456</TG>
  50.     <TG>BLINK</TG>Click here!<TG>/BLINK</TG>
  51. </PRE>
  52. But, not all jerks became jerks because they like to be a jerk. Very often,
  53. jerks are forced to use code as seen above by their employee.
  54. <P>
  55.  
  56. <QUEST>Why is <hsc> that slow?
  57. <ANSWR>One reason is, that <hsc> handles (nearly) all resources dynamically
  58. (That means, it often calls <CODE>malloc()</CODE> and <CODE>free()</CODE>,
  59. which are known to be quite slow).<BR>
  60. Another, quite embarrasing, reason is, that most of these resources are
  61. kept in linked lists. And therefor, if <hsc> has to look for something, it
  62. sequentially searches these list. Shame on me, I should use an AVL-tree for
  63. such things!
  64. <P>
  65.  
  66. </WEBPAGE>
  67.  
  68.